home *** CD-ROM | disk | FTP | other *** search
- Here's an example of a text file to use with TOK64. Use SAMPLE.BAT
- to process it. BTW, things don't have to be in particular columns.
-
- start tok64 hi
- 1 poke 53280,0:poke 53281,0:poke 53272,23
- 2 print "{clear}{down*2}{green}Hi."
- 3 print:print "{down}{gray}Hit a key to end: "
- 4 get a$:if a$="" then 4
- 5 print:print "{down}Bye Now!"
- stop tok64
-
- OK, here's another listing.
-
- start tok64 hello
- 1 poke 53280,14:poke 53281,6:poke 53272,21
- 2 print "{clear}{down*2}{light blue}hello."
- 3 print:print "here's the value for {255} "; {pi}
- 4 print:print "{down}hit a key to exit: "
- 5 get a$:if a$="" then 5
- 6 print:print "{down}that's all!"
- stop tok64
-
- Pretty simple, huh?
-